fmt.fmtFlags.widPresent (field)
14 uses
fmt (current package)
format.go#L24: widPresent bool
format.go#L91: if !f.widPresent || f.wid == 0 {
format.go#L109: if !f.widPresent || f.wid == 0 {
format.go#L203: if f.widPresent || f.precPresent {
format.go#L226: } else if f.zero && f.widPresent {
format.go#L394: if f.widPresent {
format.go#L400: if f.widPresent && f.wid > width && !f.minus {
format.go#L429: if f.widPresent && f.wid > width && f.minus {
format.go#L583: if f.zero && f.widPresent && f.wid > len(num) {
print.go#L184: func (p *pp) Width() (wid int, ok bool) { return p.fmt.wid, p.fmt.widPresent }
print.go#L1093: p.fmt.wid, p.fmt.widPresent, argNum = intFromArg(a, argNum)
print.go#L1095: if !p.fmt.widPresent {
print.go#L1108: p.fmt.wid, p.fmt.widPresent, i = parsenum(format, i, end)
print.go#L1109: if afterIndex && p.fmt.widPresent { // "%[3]2d"
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |